home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 7 / Night Owl Shareware (NOPV7)(Night Owl Publisher Inc.)(1992).bin / 038a / bash1_12.arj / BASH1-12.TAR / bash-1.12 / builtins / echo.def < prev    next >
Text File  |  1992-01-07  |  4KB  |  175 lines

  1. This file is echo.def, from which is created echo.c.
  2. It implements the builtin "echo" in Bash.
  3.  
  4. Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
  5.  
  6. This file is part of GNU Bash, the Bourne Again SHell.
  7.  
  8. Bash is free software; you can redistribute it and/or modify it under
  9. the terms of the GNU General Public License as published by the Free
  10. Software Foundation; either version 1, or (at your option) any later
  11. version.
  12.  
  13. Bash is distributed in the hope that it will be useful, but WITHOUT ANY
  14. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16. for more details.
  17.  
  18. You should have received a copy of the GNU General Public License along
  19. with Bash; see the file COPYING.  If not, write to the Free Software
  20. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. $PRODUCES echo.c
  23. #include <stdio.h>
  24. #include "../shell.h"
  25.  
  26. $BUILTIN echo
  27. $FUNCTION echo_builtin
  28. $DEPENDS_ON V9_ECHO
  29. $SHORT_DOC echo [-neE] [arg ...]
  30. Output the ARGs.  If -n is specified, the trailing newline is
  31. suppressed.  If the -e option is given, interpretation of the
  32. following backslash-escaped characters is turned on:
  33.     \a    alert (bell)
  34.     \b    backspace
  35.     \c    suppress trailing newline
  36.     \f    form feed
  37.     \n    new line
  38.     \r    carriage return
  39.     \t    horizontal tab
  40.     \v    vertical tab
  41.     \\    backslash
  42.     \num    the character whose ASCII code is NUM (octal).
  43.  
  44. You can explicitly turn off the interpretation of the above characters
  45. on System V systems with the -E option.
  46. $END
  47.  
  48. $BUILTIN echo
  49. $FUNCTION echo_builtin
  50. $DEPENDS_ON !V9_ECHO
  51. $SHORT_DOC echo [-n] [arg ...]
  52. Output the ARGs.  If -n is specified, the trailing newline is suppressed.
  53. $END
  54.  
  55. #if defined (V9_ECHO)
  56. #  if defined (USG)
  57. #    define VALID_ECHO_OPTIONS "neE"
  58. #  else
  59. #    define VALID_ECHO_OPTIONS "ne"
  60. #  endif /* !USG */
  61. #else /* !V9_ECHO */
  62. #  define VALID_ECHO_OPTIONS "n"
  63. #endif /* !V9_ECHO */
  64.  
  65. /* Print the words in LIST to standard output.  If the first word is
  66.    `-n', then don't print a trailing newline.  We also support the
  67.    echo syntax from Version 9 unix systems. */
  68. echo_builtin (list)
  69.      WORD_LIST *list;
  70. {
  71.   int display_return = 1, do_v9 = 0;
  72.  
  73. /* System V machines already have a /bin/sh with a v9 behaviour.  We
  74.    give Bash the identical behaviour for these machines so that the
  75.    existing system shells won't barf. */
  76. #if defined (V9_ECHO) && defined (USG)
  77.     do_v9 = 1;
  78. #endif
  79.  
  80.   while (list && list->word->word[0] == '-')
  81.     {
  82.       register char *temp;
  83.       register int i;
  84.  
  85.       /* If it appears that we are handling options, then make sure that
  86.      all of the options specified are actually valid.  Otherwise, the
  87.      string should just be echoed. */
  88.       temp = &(list->word->word[1]);
  89.  
  90.       for (i = 0; temp[i]; i++)
  91.     {
  92.       if (rindex (VALID_ECHO_OPTIONS, temp[i]) == 0)
  93.         goto just_echo;
  94.     }
  95.  
  96.       if (!*temp)
  97.     goto just_echo;
  98.  
  99.       /* All of the options in TEMP are valid options to ECHO.
  100.      Handle them. */
  101.       while (*temp)
  102.     {
  103.       if (*temp == 'n')
  104.         display_return = 0;
  105. #if defined (V9_ECHO)
  106.       else if (*temp == 'e')
  107.         do_v9 = 1;
  108. #if defined (USG)
  109.       else if (*temp == 'E')
  110.         do_v9 = 0;
  111. #endif /* USG */
  112. #endif /* V9_ECHO */
  113.       else
  114.         goto just_echo;
  115.  
  116.       temp++;
  117.     }
  118.       list = list->next;
  119.     }
  120.  
  121. just_echo:
  122.  
  123.   if (list)
  124.     {
  125. #if defined (V9_ECHO)
  126.       if (do_v9)
  127.     {
  128.       while (list)
  129.         {
  130.           register char *s = list->word->word;
  131.           register int c;
  132.  
  133.           while (c = *s++)
  134.         {
  135.           if (c == '\\' && *s)
  136.             {
  137.               switch (c = *s++)
  138.             {
  139.             case 'a': c = '\007'; break;
  140.             case 'b': c = '\b'; break;
  141.             case 'c': display_return = 0; continue;
  142.             case 'f': c = '\f'; break;
  143.             case 'n': c = '\n'; break;
  144.             case 'r': c = '\r'; break;
  145.             case 't': c = '\t'; break;
  146.             case 'v': c = (int) 0x0B; break;
  147.             case '0': case '1': case '2': case '3':
  148.             case '4': case '5': case '6': case '7':
  149.               c -= '0';
  150.               if (*s >= '0' && *s <= '7')
  151.                 c = c * 8 + (*s++ - '0');
  152.               if (*s >= '0' && *s <= '7')
  153.                 c = c * 8 + (*s++ - '0');
  154.               break;
  155.             case '\\': break;
  156.             default:  putchar ('\\'); break;
  157.             }
  158.             }
  159.           putchar(c);
  160.         }
  161.           list = list->next;
  162.           if (list)
  163.         putchar(' ');
  164.         }
  165.     }
  166.       else
  167. #endif /* V9_ECHO */
  168.     print_word_list (list, " ");
  169.     }
  170.   if (display_return)
  171.     printf ("\n");
  172.   fflush (stdout);
  173.   return (EXECUTION_SUCCESS);
  174. }
  175.